Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate ckb-types to v0.120.0 #108

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 19, 2022

This PR contains the following updates:

Package Type Update Change
ckb-types dependencies minor =0.108.0 -> =0.120.0

Release Notes

nervosnetwork/ckb (ckb-types)

v0.120.0: ckb 0.120.0 (29456f5 2024-12-11)

Compare Source

Highlights
  • #​4477 introduced an optional fee estimator with multiple algorithms to enhance transaction fee calculations.
  • #​4683 added WASM support.

Breaking Changes:

  • #​4741 breaks config and the executable behavior. The ckb process will enable WS using the old config file.
  • #​4728 breaks RPC. It removed anyhow's backtrace from RPC response error message.
Compatibility Table
Network Consensus Version Minimal CKB Version
dev ckb2023 since epoch 0
preview ckb2023 since epoch 0 v0.119.0
testnet ckb2023 since epoch 9690 v0.119.0
mainnet ckb2021 since epoch 5414 v0.103.0

See how to connect to various chains in Wiki.

Default assume valid target
Downloads
OS Arch Runtime Dependencies Package Sign
macOS x64 macOS 10.15 or above zip PGP
macOS (Portable) x64 macOS 10.15 or above zip PGP
macOS ARM64 macOS 10.15 or above zip PGP
macOS (Portable) ARM64 macOS 10.15 or above zip PGP
Linux x64 glibc, libstdc++ tarball PGP
Linux (Portable) x64 glibc, libstdc++ tarball PGP
CentOS x64 glibc, libstdc++ tarball PGP
CentOS (Portable) x64 glibc, libstdc++ tarball PGP
Windows x64 VC++ Redistributable zip PGP
Linux ARM64 glibc, libstdc++ tarball PGP
Docker dockerhub

Deprecation Notice: CentOS has reached its EOL, we will stop providing CentOS binaries in the future. Please use other platforms or build from source.

The .asc files are signatures. It is wise and more secure to check out for the files integrity.

Try the portable variants if the binaries complains about illegal instructions.

Changes since v0.119.0
Features
Bug Fixes
Improvements

Compare changes in GitHub

v0.119.0

Compare Source

Features
  • #​4635: Intro preview chain (@​zhangsoledad)

    Introduces a new chain operation to provide a preview environment for the upcoming hardfork on the Nervos CKB network. The new chain allows users and developers to test and review the hardfork changes before they are officially deployed on the mainnet, ensuring all updates and features are thoroughly validated. This preview chain helps improve the security and reliability of the hard fork process, minimizing potential risks before the main deployment.

Bug Fixes
Improvements

v0.118.0

Compare Source

Features
  • #​4365: Asynchronous Block Download and Verification (@​eval-exec)

    This PR introduces several enhancements to the CKB Synchronizer to reduce synchronization time
    during the initial block download (IBD) phase. Key changes include:

    1. Asynchronous Operations: The Synchronizer sliding window movement is now decoupled from the block verification process in the ChainService, allowing asynchronous handling. This improves the efficiency of block requests and verification.
    2. Changes to sync_state RPC:
      • Added tip_hash and tip_number to represent the current chain tip.
      • Added unverified_tip_hash and unverified_tip_number to track the latest received but not yet verified blocks.
      • Removed the orphan_blocks_size field.
    3. Log Format Update: The format of CKB logs has been updated, specifically changing the prefix and content of log entries to provide clearer and more structured information.

    These updates lead to a more efficient synchronization process, reducing the overall time
    required for IBD. Note that removing the orphan_blocks_size field constitutes a BREAKING CHANGE
    in the sync_state RPC.

  • #​4380: New spawn with scheduler (@​mohanson)

    This change is only available in the next version of CKB consensus rules.

    In this PR, we refactored the implementation of spawn. The refactored syscall API is defined as follows: https://github.com/XuJiandong/ckb-c-stdlib/blob/syscall-spawn/ckb_syscall_apis.h#L54-L68.

    Review Introduction: #​4380 (comment)

    Documentation: nervosnetwork/rfcs#436

  • #​4291: New script verify with ckb-vm pause (@​chenyukang)

    1. Use a job queue for pending transactions waiting for verifying
    2. Multiple workers trigger the verification process by picking task from queue
    3. Verification is changed to async style
    4. Use channel to resume/suspend vm
    5. No snapshot from VM machines
    6. No Suspend state from cache
    7. All transactions from remote peer will be added into queue
Bug Fixes
Improvements

v0.117.0

Compare Source

v0.116.1

Features
  • #​4433: Add PoolRpc::test_tx_pool_accept, check if the transaction can be accepted by TxPool (@​eval-exec)
Bug Fixes
  • #​4405: Fix default ckb.toml's [notifier] to [notify] (@​eval-exec)

    This is a breaking change in the config file format.

Improvements

v0.115.0

Compare Source

Features
Bug Fixes
Improvements

v0.114.0

Compare Source

Features
Bug Fixes

v0.113.1

Compare Source

Bug Fixes

v0.113.0

Compare Source

Features
Bug Fixes
Improvements

v0.112.1

Features
Bug Fixes
Improvements

v0.111.0

Compare Source

Features
Improvements
Bug Fixes

v0.110.2

Compare Source

Features
Bug Fixes

v0.110.1

Compare Source

BREAKING: Light Client Protocol Softfork Activation in Mainnet

Field Value Note
start 8,282 2023/09/01 00:00:00 utc
timeout 8,552 8,282 + 270
min_activation_epoch 8,648 2023/11/01 00:00:00 utc
threshold 80%

v0.110.0

Compare Source

Features
  • #​3949 rpc: (BREAKING) Add time_added_to_pool field for ChainRpcImpl::get_transaction (@​eval-exec)
Bug Fixes

v0.109.0

Compare Source

Features
  • #​3927 cli: (BREAKING) Remove ckb db-repair subcommand (@​zhangsoledad)

  • #​3772 rpc: (BREAKING) Add soft-fork deployment since info in RPC (@​zhangsoledad)

    The response schema has changed in the RPC get_deployments_info and get_consensus.

  • #​3842: Add exact search mode (@​quake)

  • #​3859: Add flatmemory feature for FlatMemory based machine types (@​xxuejie)

    This change adds a new flatmemory feature to ckb-script, which will use FlatMemory as the memory type for
    CoreMachine/CoreMachineType. While this is not gonna be used in CKB, a FlatMemory will be quite useful in the development of surrounding tools, including ckb-debugger. Note that one option is that a debugger could maintain its own ckb-script package, but considering the fact that the change here is rather small, I would suggest we include this here feature in CKB.

  • #​3752: Thread-safe vm (@​zhangsoledad)

Bug Fixes
Improvements

v0.108.1

Compare Source

Bug Fixes
Misc

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 0d092f6 to 05d3ee8 Compare September 7, 2022 14:43
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.104.0 fix(deps): update rust crate ckb-types to v0.104.1 Sep 7, 2022
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch 2 times, most recently from 94517ab to 416da77 Compare October 10, 2022 04:52
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 416da77 to c5f0a07 Compare October 25, 2022 04:38
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.104.1 fix(deps): update rust crate ckb-types to v0.105.0 Oct 25, 2022
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from c5f0a07 to c50727d Compare October 31, 2022 03:43
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.105.0 fix(deps): update rust crate ckb-types to v0.105.1 Oct 31, 2022
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from c50727d to 83eb52a Compare December 10, 2022 08:05
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.105.1 Update Rust crate ckb-types to v0.105.1 Dec 17, 2022
@renovate renovate bot changed the title Update Rust crate ckb-types to v0.105.1 fix(deps): update rust crate ckb-types to v0.105.1 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch 2 times, most recently from 19cb651 to 7ce949c Compare December 23, 2022 12:54
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.105.1 fix(deps): update rust crate ckb-types to v0.106.0 Dec 23, 2022
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 7ce949c to 25d0795 Compare January 30, 2023 12:30
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.106.0 fix(deps): update rust crate ckb-types to v0.107.0 Jan 30, 2023
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.107.0 fix(deps): update rust crate ckb-types to v0.108.0 Mar 6, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch 2 times, most recently from 2691ca7 to f0fe827 Compare March 7, 2023 11:25
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.108.0 fix(deps): update rust crate ckb-types to v0.108.1 Apr 4, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from f0fe827 to 8f7187d Compare April 4, 2023 07:05
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.108.1 fix(deps): update rust crate ckb-types to v0.109.0 Apr 19, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 8f7187d to b9bbd58 Compare April 19, 2023 02:03
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.109.0 fix(deps): update rust crate ckb-types to v0.110.0 May 16, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from b9bbd58 to 3d43eb3 Compare May 16, 2023 06:00
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 3d43eb3 to 6f8b6e5 Compare June 13, 2023 06:44
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.110.0 fix(deps): update rust crate ckb-types to v0.110.1 Aug 20, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 6f8b6e5 to 4a5e42e Compare August 20, 2023 04:43
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.110.1 fix(deps): update rust crate ckb-types to v0.110.2 Sep 11, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 4a5e42e to 43a0c92 Compare September 11, 2023 10:47
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.110.2 fix(deps): update rust crate ckb-types to v0.111.0 Sep 14, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Sep 14, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --workspace
    Updating crates.io index
    Updating git repository `https://github.com/nervina-labs/cota-smt`
    Updating git repository `https://github.com/nervina-labs/joyid-smt`
error: failed to select a version for `molecule`.
    ... required by package `ckb-types v0.103.0`
    ... which satisfies dependency `ckb-types = "^0.103.0"` of package `cota-smt v0.8.0 (https://github.com/nervina-labs/cota-smt?tag=0.8.0#1baab696)`
    ... which satisfies git dependency `cota-smt` (locked to 0.8.0) of package `cota-aggregator v0.13.1 (/tmp/renovate/repos/github/nervina-labs/cota-aggregator)`
versions that meet the requirements `=0.7.3` are: 0.7.3

all possible versions conflict with previously selected packages.

  previously selected package `molecule v0.7.5`
    ... which satisfies dependency `molecule = "=0.7.5"` of package `ckb-types v0.115.0`
    ... which satisfies dependency `ckb-types = "=0.115.0"` of package `cota-aggregator v0.13.1 (/tmp/renovate/repos/github/nervina-labs/cota-aggregator)`

failed to select a version for `molecule` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from fee4d7b to 22b47fb Compare November 14, 2023 04:14
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.111.0 fix(deps): update rust crate ckb-types to v0.112.0 Nov 14, 2023
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.112.0 fix(deps): update rust crate ckb-types to v0.112.1 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 22b47fb to e6d16a8 Compare November 21, 2023 07:36
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from e6d16a8 to 1d8f729 Compare January 9, 2024 10:31
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.112.1 fix(deps): update rust crate ckb-types to v0.113.0 Jan 9, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 1d8f729 to 1bd8b8a Compare January 31, 2024 11:15
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.113.0 fix(deps): update rust crate ckb-types to v0.113.1 Jan 31, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 1bd8b8a to a9598c0 Compare February 29, 2024 09:13
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.113.1 fix(deps): update rust crate ckb-types to v0.114.0 Feb 29, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from a9598c0 to 12a4c96 Compare April 1, 2024 03:19
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.114.0 fix(deps): update rust crate ckb-types to v0.115.0 Apr 1, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 12a4c96 to 766991a Compare May 6, 2024 04:18
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.115.0 fix(deps): update rust crate ckb-types to v0.116.0 May 6, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 766991a to 89979cb Compare May 7, 2024 04:52
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.116.0 fix(deps): update rust crate ckb-types to v0.115.0 May 7, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 89979cb to 196514d Compare May 11, 2024 05:32
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.115.0 fix(deps): update rust crate ckb-types to v0.116.1 May 11, 2024
Copy link
Contributor Author

renovate bot commented May 11, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package [email protected] --precise 0.120.0
    Updating crates.io index
error: failed to select a version for the requirement `ckb-types = "=0.108.0"`
candidate versions found which didn't match: 0.120.0
location searched: crates.io index
required by package `ckb-jsonrpc-types v0.108.0`
    ... which satisfies dependency `ckb-jsonrpc-types = "=0.108.0"` (locked to 0.108.0) of package `cota-aggregator v0.13.1 (/tmp/renovate/repos/github/nervina-labs/cota-aggregator)`

@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 196514d to 536e8c8 Compare July 29, 2024 04:28
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.116.1 fix(deps): update rust crate ckb-types to v0.117.0 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 536e8c8 to dc3a288 Compare September 18, 2024 04:16
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.117.0 fix(deps): update rust crate ckb-types to v0.118.0 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from dc3a288 to 2e4b4b8 Compare October 25, 2024 06:46
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.118.0 fix(deps): update rust crate ckb-types to v0.119.0 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/ckb-types-0.x branch from 2e4b4b8 to 14a2b34 Compare December 11, 2024 04:24
@renovate renovate bot changed the title fix(deps): update rust crate ckb-types to v0.119.0 fix(deps): update rust crate ckb-types to v0.120.0 Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants